home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-12-13 | 1.2 KB | 53 lines | [TEXT/MMCC] |
- // CCompletedImport.h -- dialog class
- // Created 01/01/95 12:01 PM by AppMaker
-
- #pragma once
-
- #include <LDialogBox.h>
- #define cmd_CompletedImport 'Comt'
- #define rPPob_CompletedImport 203
-
- class LStream;
-
- class LStdButton;
- class LCaption;
-
-
-
- //----------
- class CCompletedImport : public LDialogBox {
- public: // these comprise the programming interface for using the dialog
- static CCompletedImport* CreateCompletedImport (LCommander *inSuperCommander);
-
-
- public: // these comprise the implementation
- static CCompletedImport* CreateCompletedImportStream (LStream *inStream);
-
- CCompletedImport();
- CCompletedImport (LStream *inStream);
- virtual ~CCompletedImport();
-
-
- virtual void ListenToMessage (MessageT inMessage,
- void *ioParam);
-
- virtual Boolean ObeyCommand (CommandT inCommand,
- void *ioParam = nil);
- virtual void FindCommandStatus (CommandT inCommand,
- Boolean &outEnabled,
- Boolean &outUsesMark,
- Char16 &outMark,
- Str255 outName);
- virtual Boolean FocusDraw();
-
- void SetImported(unsigned long);
-
- protected:
- virtual void FinishCreateSelf();
-
- protected:
- LStdButton *mOKButton;
- LCaption *mNumImported;
-
- };
-